home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 109
/
Vol 109.iso
/
games
/
flash_ch.swf
/
scripts
/
DefineSprite_6_energyBar
/
frame_1
/
DoAction.as
Wrap
Text File
|
2008-11-12
|
237b
|
16 lines
function show(value, maxValue)
{
_visible = true;
var frame = Math.round(value * 20 / maxValue);
if(frame == 0)
{
frame = 1;
}
gotoAndStop(frame);
}
function hide()
{
_visible = false;
}
stop();